Sets the current value from a given array of bytes and size in bits.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Overloads Sub SetByteArrayValue( _
   ByVal () As Byte, _
   ByVal  As Integer _
) 
             
        
            
            'Usage
 
Dim instance As OpaqueData
Dim byteArray() As Byte
Dim sizeInBits As Integer
 
instance.SetByteArrayValue(byteArray, sizeInBits)
             
        
            
            public void SetByteArrayValue( 
   byte[] ,
   int 
)
             
        
            
            public:
void SetByteArrayValue( 
   array<byte>^ ,
   int 
) 
             
        
             
        
            Parameters
- byteArray
 
- The value expressed as array of bytes.
 - sizeInBits
 
- Size in bits of the resulting value.
 
            
             
            
            
            
            
            
            
            
            
            
            Requirements
 
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
            
            See Also